home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / imputil.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  15KB  |  531 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''
  5. Import utilities
  6.  
  7. Exported classes:
  8.     ImportManager   Manage the import process
  9.  
  10.     Importer        Base class for replacing standard import functions
  11.     BuiltinImporter Emulate the import mechanism for builtin and frozen modules
  12.  
  13.     DynLoadSuffixImporter
  14. '''
  15. import imp
  16. import sys
  17. import __builtin__
  18. import struct
  19. import marshal
  20. __all__ = [
  21.     'ImportManager',
  22.     'Importer',
  23.     'BuiltinImporter']
  24. _StringType = type('')
  25. _ModuleType = type(sys)
  26.  
  27. class ImportManager:
  28.     '''Manage the import process.'''
  29.     
  30.     def install(self, namespace = vars(__builtin__)):
  31.         '''Install this ImportManager into the specified namespace.'''
  32.         if isinstance(namespace, _ModuleType):
  33.             namespace = vars(namespace)
  34.         
  35.         self.previous_importer = namespace['__import__']
  36.         self.namespace = namespace
  37.         namespace['__import__'] = self._import_hook
  38.  
  39.     
  40.     def uninstall(self):
  41.         '''Restore the previous import mechanism.'''
  42.         self.namespace['__import__'] = self.previous_importer
  43.  
  44.     
  45.     def add_suffix(self, suffix, importFunc):
  46.         self.fs_imp.add_suffix(suffix, importFunc)
  47.  
  48.     clsFilesystemImporter = None
  49.     
  50.     def __init__(self, fs_imp = None):
  51.         if not _os_stat:
  52.             _os_bootstrap()
  53.         
  54.         if fs_imp is None:
  55.             if not self.clsFilesystemImporter:
  56.                 pass
  57.             cls = _FilesystemImporter
  58.             fs_imp = cls()
  59.         
  60.         self.fs_imp = fs_imp
  61.         for desc in imp.get_suffixes():
  62.             if desc[2] == imp.C_EXTENSION:
  63.                 self.add_suffix(desc[0], DynLoadSuffixImporter(desc).import_file)
  64.                 continue
  65.         
  66.         self.add_suffix('.py', py_suffix_importer)
  67.  
  68.     
  69.     def _import_hook(self, fqname, globals = None, locals = None, fromlist = None):
  70.         '''Python calls this hook to locate and import a module.'''
  71.         parts = fqname.split('.')
  72.         parent = self._determine_import_context(globals)
  73.         if parent:
  74.             module = parent.__importer__._do_import(parent, parts, fromlist)
  75.             if module:
  76.                 return module
  77.             
  78.         
  79.         
  80.         try:
  81.             top_module = sys.modules[parts[0]]
  82.         except KeyError:
  83.             top_module = self._import_top_module(parts[0])
  84.             if not top_module:
  85.                 raise ImportError, 'No module named ' + fqname
  86.             
  87.         except:
  88.             top_module
  89.  
  90.         if len(parts) == 1:
  91.             if not fromlist:
  92.                 return top_module
  93.             
  94.             if not top_module.__dict__.get('__ispkg__'):
  95.                 return top_module
  96.             
  97.         
  98.         importer = top_module.__dict__.get('__importer__')
  99.         if importer:
  100.             return importer._finish_import(top_module, parts[1:], fromlist)
  101.         
  102.         if len(parts) == 2 and hasattr(top_module, parts[1]):
  103.             return top_module
  104.         
  105.         raise ImportError, 'No module named ' + fqname
  106.  
  107.     
  108.     def _determine_import_context(self, globals):
  109.         '''Returns the context in which a module should be imported.
  110.  
  111.         The context could be a loaded (package) module and the imported module
  112.         will be looked for within that package. The context could also be None,
  113.         meaning there is no context -- the module should be looked for as a
  114.         "top-level" module.
  115.         '''
  116.         if not globals or not globals.get('__importer__'):
  117.             return None
  118.         
  119.         parent_fqname = globals['__name__']
  120.         if globals['__ispkg__']:
  121.             parent = sys.modules[parent_fqname]
  122.             return parent
  123.         
  124.         i = parent_fqname.rfind('.')
  125.         if i == -1:
  126.             return None
  127.         
  128.         parent_fqname = parent_fqname[:i]
  129.         parent = sys.modules[parent_fqname]
  130.         return parent
  131.  
  132.     
  133.     def _import_top_module(self, name):
  134.         for item in sys.path:
  135.             if isinstance(item, _StringType):
  136.                 module = self.fs_imp.import_from_dir(item, name)
  137.             else:
  138.                 module = item.import_top(name)
  139.             if module:
  140.                 return module
  141.                 continue
  142.         
  143.  
  144.     
  145.     def _reload_hook(self, module):
  146.         '''Python calls this hook to reload a module.'''
  147.         importer = module.__dict__.get('__importer__')
  148.         if not importer:
  149.             pass
  150.         
  151.         raise SystemError, 'reload not yet implemented'
  152.  
  153.  
  154.  
  155. class Importer:
  156.     '''Base class for replacing standard import functions.'''
  157.     
  158.     def import_top(self, name):
  159.         '''Import a top-level module.'''
  160.         return self._import_one(None, name, name)
  161.  
  162.     
  163.     def _finish_import(self, top, parts, fromlist):
  164.         bottom = self._load_tail(top, parts)
  165.         if not fromlist:
  166.             return top
  167.         
  168.         if bottom.__ispkg__:
  169.             self._import_fromlist(bottom, fromlist)
  170.         
  171.         return bottom
  172.  
  173.     
  174.     def _import_one(self, parent, modname, fqname):
  175.         '''Import a single module.'''
  176.         
  177.         try:
  178.             return sys.modules[fqname]
  179.         except KeyError:
  180.             pass
  181.  
  182.         result = self.get_code(parent, modname, fqname)
  183.         if result is None:
  184.             return None
  185.         
  186.         module = self._process_result(result, fqname)
  187.         if parent:
  188.             setattr(parent, modname, module)
  189.         
  190.         return module
  191.  
  192.     
  193.     def _process_result(self, .2, fqname):
  194.         (ispkg, code, values) = .2
  195.         is_module = isinstance(code, _ModuleType)
  196.         if is_module:
  197.             module = code
  198.         else:
  199.             module = imp.new_module(fqname)
  200.         module.__importer__ = self
  201.         module.__ispkg__ = ispkg
  202.         module.__dict__.update(values)
  203.         sys.modules[fqname] = module
  204.         if not is_module:
  205.             
  206.             try:
  207.                 exec code in module.__dict__
  208.             if fqname in sys.modules:
  209.                 del sys.modules[fqname]
  210.             
  211.  
  212.             raise 
  213.         
  214.         is_module
  215.         module = sys.modules[fqname]
  216.         module.__name__ = fqname
  217.         return module
  218.  
  219.     
  220.     def _load_tail(self, m, parts):
  221.         '''Import the rest of the modules, down from the top-level module.
  222.  
  223.         Returns the last module in the dotted list of modules.
  224.         '''
  225.         for part in parts:
  226.             fqname = '%s.%s' % (m.__name__, part)
  227.             m = self._import_one(m, part, fqname)
  228.             if not m:
  229.                 raise ImportError, 'No module named ' + fqname
  230.                 continue
  231.         
  232.         return m
  233.  
  234.     
  235.     def _import_fromlist(self, package, fromlist):
  236.         '''Import any sub-modules in the "from" list.'''
  237.         if '*' in fromlist:
  238.             fromlist = list(fromlist) + list(package.__dict__.get('__all__', []))
  239.         
  240.         for sub in fromlist:
  241.             if sub != '*' and not hasattr(package, sub):
  242.                 subname = '%s.%s' % (package.__name__, sub)
  243.                 submod = self._import_one(package, sub, subname)
  244.                 if not submod:
  245.                     raise ImportError, 'cannot import name ' + subname
  246.                 
  247.             submod
  248.         
  249.  
  250.     
  251.     def _do_import(self, parent, parts, fromlist):
  252.         '''Attempt to import the module relative to parent.
  253.  
  254.         This method is used when the import context specifies that <self>
  255.         imported the parent module.
  256.         '''
  257.         top_name = parts[0]
  258.         top_fqname = parent.__name__ + '.' + top_name
  259.         top_module = self._import_one(parent, top_name, top_fqname)
  260.         if not top_module:
  261.             return None
  262.         
  263.         return self._finish_import(top_module, parts[1:], fromlist)
  264.  
  265.     
  266.     def get_code(self, parent, modname, fqname):
  267.         '''Find and retrieve the code for the given module.
  268.  
  269.         parent specifies a parent module to define a context for importing. It
  270.         may be None, indicating no particular context for the search.
  271.  
  272.         modname specifies a single module (not dotted) within the parent.
  273.  
  274.         fqname specifies the fully-qualified module name. This is a
  275.         (potentially) dotted name from the "root" of the module namespace
  276.         down to the modname.
  277.         If there is no parent, then modname==fqname.
  278.  
  279.         This method should return None, or a 3-tuple.
  280.  
  281.         * If the module was not found, then None should be returned.
  282.  
  283.         * The first item of the 2- or 3-tuple should be the integer 0 or 1,
  284.             specifying whether the module that was found is a package or not.
  285.  
  286.         * The second item is the code object for the module (it will be
  287.             executed within the new module\'s namespace). This item can also
  288.             be a fully-loaded module object (e.g. loaded from a shared lib).
  289.  
  290.         * The third item is a dictionary of name/value pairs that will be
  291.             inserted into new module before the code object is executed. This
  292.             is provided in case the module\'s code expects certain values (such
  293.             as where the module was found). When the second item is a module
  294.             object, then these names/values will be inserted *after* the module
  295.             has been loaded/initialized.
  296.         '''
  297.         raise RuntimeError, 'get_code not implemented'
  298.  
  299.  
  300. if not __debug__ or 'c':
  301.     pass
  302. _suffix_char = 'o'
  303. _suffix = '.py' + _suffix_char
  304.  
  305. def _compile(pathname, timestamp):
  306.     """Compile (and cache) a Python source file.
  307.  
  308.     The file specified by <pathname> is compiled to a code object and
  309.     returned.
  310.  
  311.     Presuming the appropriate privileges exist, the bytecodes will be
  312.     saved back to the filesystem for future imports. The source file's
  313.     modification timestamp must be provided as a Long value.
  314.     """
  315.     codestring = open(pathname, 'rU').read()
  316.     if codestring and codestring[-1] != '\n':
  317.         codestring = codestring + '\n'
  318.     
  319.     code = __builtin__.compile(codestring, pathname, 'exec')
  320.     
  321.     try:
  322.         f = open(pathname + _suffix_char, 'wb')
  323.     except IOError:
  324.         pass
  325.  
  326.     f.write('\x00\x00\x00\x00')
  327.     f.write(struct.pack('<I', timestamp))
  328.     marshal.dump(code, f)
  329.     f.flush()
  330.     f.seek(0, 0)
  331.     f.write(imp.get_magic())
  332.     f.close()
  333.     return code
  334.  
  335. _os_stat = None
  336. _os_path_join = None
  337.  
  338. def _os_bootstrap():
  339.     """Set up 'os' module replacement functions for use during import bootstrap."""
  340.     global _os_stat, _os_path_join
  341.     names = sys.builtin_module_names
  342.     join = None
  343.     if 'posix' in names:
  344.         sep = '/'
  345.         stat = stat
  346.         import posix
  347.     elif 'nt' in names:
  348.         sep = '\\'
  349.         stat = stat
  350.         import nt
  351.     elif 'dos' in names:
  352.         sep = '\\'
  353.         stat = stat
  354.         import dos
  355.     elif 'os2' in names:
  356.         sep = '\\'
  357.         stat = stat
  358.         import os2
  359.     elif 'mac' in names:
  360.         stat = stat
  361.         import mac
  362.         
  363.         def join(a, b):
  364.             if a == '':
  365.                 return b
  366.             
  367.             if ':' not in a:
  368.                 a = ':' + a
  369.             
  370.             if a[-1:] != ':':
  371.                 a = a + ':'
  372.             
  373.             return a + b
  374.  
  375.     else:
  376.         raise ImportError, 'no os specific module found'
  377.     if join is None:
  378.         
  379.         def join(a, b, sep = sep):
  380.             if a == '':
  381.                 return b
  382.             
  383.             lastchar = a[-1:]
  384.             if lastchar == '/' or lastchar == sep:
  385.                 return a + b
  386.             
  387.             return a + sep + b
  388.  
  389.     
  390.     _os_stat = stat
  391.     _os_path_join = join
  392.  
  393.  
  394. def _os_path_isdir(pathname):
  395.     '''Local replacement for os.path.isdir().'''
  396.     
  397.     try:
  398.         s = _os_stat(pathname)
  399.     except OSError:
  400.         return None
  401.  
  402.     return s.st_mode & 61440 == 16384
  403.  
  404.  
  405. def _timestamp(pathname):
  406.     '''Return the file modification time as a Long.'''
  407.     
  408.     try:
  409.         s = _os_stat(pathname)
  410.     except OSError:
  411.         return None
  412.  
  413.     return long(s.st_mtime)
  414.  
  415.  
  416. class BuiltinImporter(Importer):
  417.     
  418.     def get_code(self, parent, modname, fqname):
  419.         if parent:
  420.             return None
  421.         
  422.         if imp.is_builtin(modname):
  423.             type = imp.C_BUILTIN
  424.         elif imp.is_frozen(modname):
  425.             type = imp.PY_FROZEN
  426.         else:
  427.             return None
  428.         module = imp.load_module(modname, None, modname, ('', '', type))
  429.         return (0, module, { })
  430.  
  431.  
  432.  
  433. class _FilesystemImporter(Importer):
  434.     
  435.     def __init__(self):
  436.         self.suffixes = []
  437.  
  438.     
  439.     def add_suffix(self, suffix, importFunc):
  440.         self.suffixes.append((suffix, importFunc))
  441.  
  442.     
  443.     def import_from_dir(self, dir, fqname):
  444.         result = self._import_pathname(_os_path_join(dir, fqname), fqname)
  445.         if result:
  446.             return self._process_result(result, fqname)
  447.         
  448.  
  449.     
  450.     def get_code(self, parent, modname, fqname):
  451.         return self._import_pathname(_os_path_join(parent.__pkgdir__, modname), fqname)
  452.  
  453.     
  454.     def _import_pathname(self, pathname, fqname):
  455.         if _os_path_isdir(pathname):
  456.             result = self._import_pathname(_os_path_join(pathname, '__init__'), fqname)
  457.             if result:
  458.                 values = result[2]
  459.                 values['__pkgdir__'] = pathname
  460.                 values['__path__'] = [
  461.                     pathname]
  462.                 return (1, result[1], values)
  463.             
  464.             return None
  465.         
  466.         for suffix, importFunc in self.suffixes:
  467.             filename = pathname + suffix
  468.             
  469.             try:
  470.                 finfo = _os_stat(filename)
  471.             except OSError:
  472.                 continue
  473.  
  474.             return importFunc(filename, finfo, fqname)
  475.         
  476.  
  477.  
  478.  
  479. def py_suffix_importer(filename, finfo, fqname):
  480.     file = filename[:-3] + _suffix
  481.     t_py = long(finfo[8])
  482.     t_pyc = _timestamp(file)
  483.     code = None
  484.     if t_pyc is not None and t_pyc >= t_py:
  485.         f = open(file, 'rb')
  486.         if f.read(4) == imp.get_magic():
  487.             t = struct.unpack('<I', f.read(4))[0]
  488.             if t == t_py:
  489.                 code = marshal.load(f)
  490.             
  491.         
  492.         f.close()
  493.     
  494.     if code is None:
  495.         file = filename
  496.         code = _compile(file, t_py)
  497.     
  498.     return (0, code, {
  499.         '__file__': file })
  500.  
  501.  
  502. class DynLoadSuffixImporter:
  503.     
  504.     def __init__(self, desc):
  505.         self.desc = desc
  506.  
  507.     
  508.     def import_file(self, filename, finfo, fqname):
  509.         fp = open(filename, self.desc[1])
  510.         module = imp.load_module(fqname, fp, filename, self.desc)
  511.         module.__file__ = filename
  512.         return (0, module, { })
  513.  
  514.  
  515.  
  516. def _print_importers():
  517.     items = sys.modules.items()
  518.     items.sort()
  519.     for name, module in items:
  520.         if module:
  521.             print name, module.__dict__.get('__importer__', '-- no importer')
  522.             continue
  523.         print name, '-- non-existent module'
  524.     
  525.  
  526.  
  527. def _test_revamp():
  528.     ImportManager().install()
  529.     sys.path.insert(0, BuiltinImporter())
  530.  
  531.